-
Notifications
You must be signed in to change notification settings - Fork 1.1k
mod_auth_gssapi: Add support for GssapiBasicAuth
.
#2212
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
|
This adds support for the GssapiBasicAuth setting which allows to fall back to basic auth if NEGOTIATE fails.
7c6ef5a
to
7267ca1
Compare
I believe the change fits into: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
From a technical perspective this looks correct. The test failures look unrelated.
I can't comment on the legal side but I've pinged someone who might.
|%> | ||
# mod_auth_gssapi configuration | ||
# mod_auth_gssapi configuration |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I am wondering about this and whitespace. It looks correct, but have you manually verified this looks sane?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yep, it does:
<Location "/somewhere">
<RequireAll>
Require user abc
</RequireAll>
AuthType GSSAPI
AuthName "My ID"
# mod_auth_gssapi configuration
GssapiBasicAuth On
GssapiSSLonly Off
GssapiLocalName On
GssapiCredStore keytab:/etc/httpd/conf/http.keytab
</Location>
Hey @olifre! We have actually removed the TPE because it required engineers and contributors to make legal decisions without necessarily having the expertise to do so. That said, the new CLA is basically the well-known Apache CLA with Note; yeah, I know the web page still references the old CLA, I've poked the web team to update it! |
Hi @binford2k , I did raise the CLA issue in various circles here, and people are at least aware of it. In administration, this may take a year or longer, though (if we are lucky). |
This PR has been marked as stale because it has been open for a while and has had no recent activity. If this PR is still important to you please drop a comment below and we will add this to our backlog to complete. Otherwise, it will be closed in 7 days. |
I have no feedback concerning CLA signing from my organization yet. Adding this (not helpful for the PR) comment to keep stalebot at bay. |
@olifre Sorry for the wait on review, anyway this change look's good to me and the failures are unrelated so I feel comfortable to go ahead and merge. Thank's for putting in the work. |
This adds support for the
GssapiBasicAuth
settingwhich allows to fall back to basic auth if
NEGOTIATE
fails.